home *** CD-ROM | disk | FTP | other *** search
/ Champak 138 / Volume 138 Aug 19 2011 - Damaged.iso / Games / mom_mania.swf / scripts / mx / managers / ISystemManager.as < prev    next >
Text File  |  2011-08-19  |  2KB  |  61 lines

  1. package mx.managers
  2. {
  3.    import flash.display.LoaderInfo;
  4.    import flash.display.Sprite;
  5.    import flash.display.Stage;
  6.    import flash.events.IEventDispatcher;
  7.    import flash.geom.Rectangle;
  8.    import flash.text.TextFormat;
  9.    import mx.core.IChildList;
  10.    import mx.core.IFlexModuleFactory;
  11.    
  12.    public interface ISystemManager extends IEventDispatcher, IChildList, IFlexModuleFactory
  13.    {
  14.        
  15.       
  16.       function get toolTipChildren() : IChildList;
  17.       
  18.       function get numModalWindows() : int;
  19.       
  20.       function isTopLevel() : Boolean;
  21.       
  22.       function isFontFaceEmbedded(param1:TextFormat) : Boolean;
  23.       
  24.       function removeFocusManager(param1:IFocusManagerContainer) : void;
  25.       
  26.       function get document() : Object;
  27.       
  28.       function get topLevelSystemManager() : ISystemManager;
  29.       
  30.       function get focusPane() : Sprite;
  31.       
  32.       function get loaderInfo() : LoaderInfo;
  33.       
  34.       function set focusPane(param1:Sprite) : void;
  35.       
  36.       function get rawChildren() : IChildList;
  37.       
  38.       function get popUpChildren() : IChildList;
  39.       
  40.       function get screen() : Rectangle;
  41.       
  42.       function deactivate(param1:IFocusManagerContainer) : void;
  43.       
  44.       function getDefinitionByName(param1:String) : Object;
  45.       
  46.       function activate(param1:IFocusManagerContainer) : void;
  47.       
  48.       function get cursorChildren() : IChildList;
  49.       
  50.       function set document(param1:Object) : void;
  51.       
  52.       function get embeddedFontList() : Object;
  53.       
  54.       function addFocusManager(param1:IFocusManagerContainer) : void;
  55.       
  56.       function get stage() : Stage;
  57.       
  58.       function set numModalWindows(param1:int) : void;
  59.    }
  60. }
  61.